home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 12
/
Cream of the Crop 12 (Part II)
/
Cream of the Crop 12 (Part II).iso
/
OS2
/
VD08BIN.ZIP
/
usr
/
include
/
util
/
thread.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-02-13
|
337 b
|
30 lines
#ifndef _THREAD_H_
#define _THREAD_H_
#include <objc/Object.h>
@interface Thread : Object
{
int threadID;
}
- init;
- initWithStackSize: (int) stackSize;
- run;
- (int) threadID;
- wait;
- (BOOL) hasFinished;
- suspend;
- resume;
- terminate;
@end
void initThreadObject (id objectHandle);
#endif